home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / igcref.c < prev    next >
C/C++ Source or Header  |  1996-09-21  |  20KB  |  683 lines

  1. /* Copyright (C) 1994, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* igcref.c */
  20. /* ref garbage collector for Ghostscript */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "gsexit.h"
  24. #include "gsstruct.h"            /* for gxalloc.h */
  25. #include "iname.h"
  26. #include "iastate.h"
  27. #include "idebug.h"
  28. #include "igc.h"
  29. #include "ipacked.h"
  30. #include "store.h"            /* for ref_assign_inline */
  31.  
  32. /* Define whether to trace every step of relocating ref pointers. */
  33. #if 0
  34. #  define rputc(c) dputc(c)
  35. #else
  36. #  define rputc(c) DO_NOTHING
  37. #endif
  38.  
  39. /*
  40.  * Define the 'structure' type descriptor for refs.
  41.  * This is special because it has different shared procs.
  42.  */
  43. private gc_proc_clear_reloc(refs_clear_reloc);
  44. private gc_proc_set_reloc(refs_set_reloc);
  45. private gc_proc_compact(refs_compact);
  46. private const struct_shared_procs_t refs_shared_procs =
  47.  { refs_clear_reloc, refs_set_reloc, refs_compact };
  48. private struct_proc_clear_marks(refs_clear_marks);
  49. private struct_proc_reloc_ptrs(refs_do_reloc);
  50. const gs_memory_struct_type_t st_refs =
  51.  { sizeof(ref), "refs", &refs_shared_procs, refs_clear_marks, 0, refs_do_reloc };
  52.  
  53. /*
  54.  * Define the GC procedures for structs that actually contain refs.
  55.  * These are special because the shared refs_* procedures
  56.  * are never called.  Instead, we unmark the individual refs in clear_marks,
  57.  * disregard refs_*_reloc (because we will never relocate a ptr_ref_type
  58.  * pointer pointing into the structure), disregard refs_compact (because
  59.  * compaction is never required), and remove the marks in reloc_ptrs.
  60.  * See also the comment about ptr_ref_type in imemory.h.
  61.  */
  62. CLEAR_MARKS_PROC(ref_struct_clear_marks) {
  63.     ref *pref = (ref *)vptr;
  64.     ref *end = (ref *)((char *)vptr + size);
  65.     for ( ; pref < end; pref++ )
  66.         r_clear_attrs(pref, l_mark);
  67. }
  68. ENUM_PTRS_BEGIN_PROC(ref_struct_enum_ptrs) {
  69.     if ( index >= size / sizeof(ref) )
  70.       return 0;
  71.     *pep = (ref *)vptr + index;
  72.     return ptr_ref_type;
  73. ENUM_PTRS_END_PROC }
  74. RELOC_PTRS_BEGIN(ref_struct_reloc_ptrs) {
  75.     ref *beg = vptr;
  76.     ref *end = (ref *)((char *)vptr + size);
  77.     gs_reloc_refs((ref_packed *)beg, (ref_packed *)end, gcst);
  78.     ref_struct_clear_marks(vptr, size);
  79. } RELOC_PTRS_END
  80.  
  81. /* Define a fast lookup table for ref types that use the size field. */
  82. private byte types_using_size[1 << r_type_bits];
  83.  
  84. /* ------ Initialization ------ */
  85. void
  86. gs_igcref_init(gs_memory_t *mem)
  87. {    int i;
  88.     for ( i = 0; i < t_next_index; ++i )
  89.       switch ( i )
  90.         {
  91.         default:
  92.           types_using_size[i] = 0;
  93.           break;
  94.         case t_null:    /* see relocation planning phase below */
  95.         case_types_with_size:
  96.           types_using_size[i] = 1;
  97.         }
  98.     memset(types_using_size + t_next_index, 1,
  99.            countof(types_using_size) - t_next_index);
  100. }
  101.  
  102. /* ------ Unmarking phase ------ */
  103.  
  104. /* Unmark a single ref. */
  105. void
  106. ptr_ref_unmark(void *vptr, gc_state_t *ignored)
  107. {    if ( r_is_packed((ref *)vptr) )
  108.       r_clear_pmark((ref_packed *)vptr);
  109.     else
  110.       r_clear_attrs((ref *)vptr, l_mark);
  111. }
  112.  
  113. /* Unmarking routine for ref objects. */
  114. private void
  115. refs_clear_marks(void /*obj_header_t*/ *vptr, uint size)
  116. {    ref_packed *rp = (ref_packed *)vptr;
  117.     ref_packed *end = (ref_packed *)((byte *)vptr + size);
  118.  
  119.     /* Since the last ref is full-size, we only need to check for */
  120.     /* the end of the block when we see one of those. */
  121.     for ( ; ; )
  122.     {    if ( r_is_packed(rp) )
  123.         {
  124. #ifdef DEBUG
  125. if ( gs_debug_c('8') )
  126. {            dprintf1("  [8]unmark packed 0x%lx ", (ulong)rp);
  127.             debug_print_ref((const ref *)rp);
  128.             dprintf("\n");
  129. }
  130. #endif
  131.             r_clear_pmark(rp);
  132.             rp++;
  133.         }
  134.         else            /* full-size ref */
  135.         {
  136. #ifdef DEBUG
  137. if ( gs_debug_c('8') )
  138. {            dprintf1("  [8]unmark ref 0x%lx ", (ulong)rp);
  139.             debug_print_ref((ref *)rp);
  140.             dprintf("\n");
  141. }
  142. #endif
  143.             r_clear_attrs((ref *)rp, l_mark);
  144.             rp += packed_per_ref;
  145.             if ( rp >= (ref_packed *)end )
  146.               break;
  147.         }
  148.     }
  149. }
  150.  
  151. /* ------ Marking phase ------ */
  152.  
  153. /* Mark a ref.  Return true if new mark. */
  154. bool
  155. ptr_ref_mark(void *vptr, gc_state_t *ignored)
  156. {    if ( r_is_packed(vptr) )
  157.       { if ( r_has_pmark((ref_packed *)vptr) )
  158.           return false;
  159.         r_set_pmark((ref_packed *)vptr);
  160.       }
  161.     else
  162.       { if ( r_has_attr((ref *)vptr, l_mark) )
  163.           return false;
  164.         r_set_attrs((ref *)vptr, l_mark);
  165.       }
  166.     return true;
  167. }
  168.  
  169. /* ------ Relocation planning phase ------ */
  170.  
  171. /*
  172.  * We store relocation in the size field of refs that don't use it,
  173.  * so that we don't have to scan all the way to an unmarked object.
  174.  * We must avoid nulls, which sometimes have useful information
  175.  * in their size fields, and the types above t_next_index, which are
  176.  * actually operators in disguise and also use the size field.
  177.  */
  178. #define case_types_using_size\
  179.   case t_null: case_types_with_size
  180.  
  181. /* Clear the relocation for a ref object. */
  182. private void
  183. refs_clear_reloc(obj_header_t *hdr, uint size)
  184. {    register ref_packed *rp = (ref_packed *)(hdr + 1);
  185.     ref_packed *end = (ref_packed *)((byte *)rp + size);
  186.     while ( rp < end )
  187.     {    if ( r_is_packed(rp) )
  188.           rp++;
  189.         else            /* full-size ref */
  190.           {    /* Store the relocation here if possible. */
  191.             if ( !types_using_size[r_type((ref *)rp)] )
  192.               {    if_debug1('8',
  193.                       "  [8]clearing reloc at 0x%lx\n",
  194.                       (ulong)rp);
  195.                 r_set_size((ref *)rp, 0);
  196.               }
  197.             rp += packed_per_ref;
  198.         }
  199.     }
  200. }
  201.  
  202. /* Set the relocation for a ref object. */
  203. private bool
  204. refs_set_reloc(obj_header_t *hdr, uint reloc, uint size)
  205. {    ref_packed *rp = (ref_packed *)(hdr + 1);
  206.     ref_packed *end = (ref_packed *)((byte *)rp + size);
  207.     uint freed = 0;
  208.  
  209.     /*
  210.      * We have to be careful to keep refs aligned properly.
  211.      * For the moment, we do this by either keeping or discarding
  212.      * an entire (aligned) block of align_packed_per_ref packed elements
  213.      * as a unit.  We know that align_packed_per_ref <= packed_per_ref,
  214.      * and we also know that packed refs are always allocated in blocks
  215.      * of align_packed_per_ref, so this makes things relatively easy.
  216.      */
  217.     while ( rp < end )
  218.     {    if ( r_is_packed(rp) )
  219.         {
  220. #if align_packed_per_ref == 1
  221.             if ( r_has_pmark(rp) )
  222.               {    if_debug1('8',
  223.                       "  [8]packed ref 0x%lx is marked\n",
  224.                       (ulong)rp);
  225.                 rp++;
  226.               }
  227.             else
  228.               {
  229. #else
  230.             int i;
  231.             /*
  232.              * Note: align_packed_per_ref is typically
  233.              * 2 or 4 for 32-bit processors.
  234.              */
  235. #define all_marked (align_packed_per_ref * lp_mark)
  236. # if align_packed_per_ref == 2
  237. #  if arch_sizeof_long == arch_sizeof_short * 2
  238. #    undef all_marked
  239. #    define all_marked ( ((long)lp_mark << (sizeof(short) * 8)) + lp_mark )
  240. #    define marked (*(long *)rp & all_marked)
  241. #  else
  242. #    define marked ((*rp & lp_mark) + (rp[1] & lp_mark))
  243. #  endif
  244. # else
  245. #  if align_packed_per_ref == 4
  246. #    define marked ((*rp & lp_mark) + (rp[1] & lp_mark) +\
  247.             (rp[2] & lp_mark) + (rp[3] & lp_mark))
  248. #  else
  249.             uint marked = *rp & lp_mark;
  250.             for ( i = 1; i < align_packed_per_ref; i++ )
  251.               marked += rp[i] & lp_mark;
  252. #  endif
  253. # endif
  254.             /*
  255.              * Now marked is lp_mark * the number of marked
  256.              * packed refs in the aligned block, except for
  257.              * a couple of special cases above.
  258.              */
  259.             switch ( marked )
  260.               {
  261.               case all_marked:
  262.                 if_debug2('8',
  263.                       "  [8]packed refs 0x%lx..0x%lx are marked\n",
  264.                       (ulong)rp,
  265.                       (ulong)(rp + (align_packed_per_ref - 1)));
  266.                 rp += align_packed_per_ref;
  267.                 break;
  268.               default:
  269.                 /* At least one packed ref in the block */
  270.                 /* is marked: Keep the whole block. */
  271.                 for ( i = align_packed_per_ref; i--; rp++ )
  272.                 {    r_set_pmark(rp);
  273.                     if_debug1('8',
  274.                       "  [8]packed ref 0x%lx is marked\n",
  275.                       (ulong)rp);
  276.                 }
  277.                 break;
  278.               case 0:
  279. #endif
  280.                 if_debug2('8', "  [8]%d packed ref(s) at 0x%lx are unmarked\n",
  281.                       align_packed_per_ref, (ulong)rp);
  282.                 { uint rel = reloc + freed;
  283.                   /* Change this to an integer so we can */
  284.                   /* store the relocation here. */
  285.                   *rp = pt_tag(pt_integer) +
  286.                     min(rel, packed_max_value);
  287.                 }
  288.                 rp += align_packed_per_ref;
  289.                 freed += sizeof(ref_packed) * align_packed_per_ref;
  290.               }
  291.         }
  292.         else            /* full-size ref */
  293.         {    uint rel = reloc + freed;
  294.             /* The following assignment is logically */
  295.             /* unnecessary; we do it only for convenience */
  296.             /* in debugging. */
  297.             ref *pref = (ref *)rp;
  298.             if ( !r_has_attr(pref, l_mark) )
  299.             {    if_debug1('8', "  [8]ref 0x%lx is unmarked\n",
  300.                       (ulong)pref);
  301.                 /* Change this to a mark so we can */
  302.                 /* store the relocation. */
  303.                 r_set_type(pref, t_mark);
  304.                 r_set_size(pref, rel);
  305.                 freed += sizeof(ref);
  306.             }
  307.             else
  308.             {    if_debug1('8', "  [8]ref 0x%lx is marked\n",
  309.                       (ulong)pref);
  310.                 /* Store the relocation here if possible. */
  311.                 if ( !types_using_size[r_type(pref)] )
  312.                   {    if_debug2('8', "  [8]storing reloc %u at 0x%lx\n",
  313.                           rel, (ulong)pref);
  314.                     r_set_size(pref, rel);
  315.                   }
  316.             }
  317.             rp += packed_per_ref;
  318.         }
  319.     }
  320.     if_debug3('7', " [7]at end of refs 0x%lx, size = %u, freed = %u\n",
  321.           (ulong)(hdr + 1), size, freed);
  322.     if ( freed == size )
  323.       return false;
  324. #if arch_sizeof_int > arch_sizeof_short
  325.     /*
  326.      * If the final relocation can't fit in the r_size field
  327.      * (which can't happen if the object shares a chunk with
  328.      * any other objects, so we know reloc = 0 in this case),
  329.      * we have to keep the entire object unless there are no
  330.      * references to any ref in it.
  331.      */
  332.     if ( freed <= max_ushort )
  333.       return true;
  334.     /*
  335.      * We have to mark all surviving refs, but we also must
  336.      * overwrite any non-surviving refs with something that
  337.      * doesn't contain any pointers.
  338.      */
  339.     rp = (ref_packed *)(hdr + 1);
  340.     while ( rp < end )
  341.       {    if ( r_is_packed(rp) )
  342.           {    if ( !r_has_pmark(rp) )
  343.               *rp = pt_tag(pt_integer) | lp_mark;
  344.             ++rp;
  345.           }
  346.         else
  347.           {    /* The following assignment is logically */
  348.             /* unnecessary; we do it only for convenience */
  349.             /* in debugging. */
  350.             ref *pref = (ref *)rp;
  351.             if ( !r_has_attr(pref, l_mark) )
  352.               {    r_set_type_attrs(pref, t_mark, l_mark);
  353.                 r_set_size(pref, reloc);
  354.               }
  355.             else
  356.               {    if ( !types_using_size[r_type(pref)] )
  357.                   r_set_size(pref, reloc);
  358.               }
  359.             rp += packed_per_ref;
  360.           }
  361.       }
  362.     /* The last ref has to remain unmarked. */
  363.     r_clear_attrs((ref *)rp - 1, l_mark);
  364. #endif
  365.     return true;
  366. }
  367.  
  368. /* ------ Relocation phase ------ */
  369.  
  370. /* Relocate all the pointers in a block of refs. */
  371. private void
  372. refs_do_reloc(void /*obj_header_t*/ *vptr, uint size, gc_state_t *gcst)
  373. {    gs_reloc_refs((ref_packed *)vptr,
  374.               (ref_packed *)((char *)vptr + size),
  375.               gcst);
  376. }
  377. /* Relocate the contents of a block of refs. */
  378. /* If gcst->relocating_untraced is true, we are relocating pointers from an */
  379. /* untraced space, so relocate all refs, not just marked ones. */
  380. void
  381. gs_reloc_refs(ref_packed *from, ref_packed *to, gc_state_t *gcst)
  382. {    int min_trace = gcst->min_collect;
  383.     ref_packed *rp = from;
  384.     bool do_all = gcst->relocating_untraced;
  385.  
  386.     while ( rp < to )
  387.     {    ref *pref;
  388.         if ( r_is_packed(rp) )
  389.         {    rp++;
  390.             continue;
  391.         }
  392.         /* The following assignment is logically unnecessary; */
  393.         /* we do it only for convenience in debugging. */
  394.         pref = (ref *)rp;
  395.         if_debug3('8', "  [8]relocating %s %d ref at 0x%lx\n",
  396.               (r_has_attr(pref, l_mark) ? "marked" : "unmarked"),
  397.               r_btype(pref), (ulong)pref);
  398.         if ( (r_has_attr(pref, l_mark) || do_all) &&
  399.              r_space(pref) >= min_trace
  400.            )
  401.           switch ( r_type(pref) )
  402.         {
  403.         /* Struct cases */
  404. #define ref_case(v, t)\
  405.   pref->value.v =\
  406.     (t *)gs_reloc_struct_ptr((obj_header_t *)pref->value.v, gcst)
  407.         case t_file:
  408.             ref_case(pfile, struct stream_s); break;
  409.         case t_device:
  410.             ref_case(pdevice, struct gx_device_s); break;
  411.         case t_fontID:
  412.         case t_struct:
  413.         case t_astruct:
  414.             ref_case(pstruct, void); break;
  415. #undef ref_case
  416.         /* Non-trivial non-struct cases */
  417.         case t_dictionary:
  418.             rputc('d');
  419.             pref->value.pdict =
  420.               (dict *)gs_reloc_ref_ptr((ref_packed *)pref->value.pdict, gcst);
  421.             break;
  422.         case t_array:
  423.           {    uint size = r_size(pref);
  424.             if ( size != 0 ) /* value.refs might be NULL */
  425.               { /*
  426.                  * If the array is large, we allocated it in its
  427.                  * own object (at least originally -- this might
  428.                  * be a pointer to a subarray.)  In this case,
  429.                  * we know it is the only object in its
  430.                  * containing st_refs object, so we know that
  431.                  * the mark containing the relocation appears
  432.                  * just after it.
  433.                  */
  434.                 if ( size < max_size_st_refs / sizeof(ref) )
  435.                   { rputc('a');
  436.                     pref->value.refs =
  437.                   (ref *)gs_reloc_ref_ptr(
  438.                     (ref_packed *)pref->value.refs, gcst);
  439.                   }
  440.                 else
  441.                   { rputc('A');
  442.                     /*
  443.                  * See the t_shortarray case below for why we
  444.                  * decrement size.
  445.                  */
  446.                     --size;
  447.                     pref->value.refs =
  448.                   (ref *)gs_reloc_ref_ptr(
  449.                     (ref_packed *)(pref->value.refs + size),
  450.                     gcst) - size;
  451.                   }
  452.               }
  453.           }    break;
  454.         case t_mixedarray:
  455.             if ( r_size(pref) != 0 ) /* value.refs might be NULL */
  456.               { rputc('m');
  457.                 pref->value.packed =
  458.                   gs_reloc_ref_ptr(pref->value.packed, gcst);
  459.               }
  460.             break;
  461.         case t_shortarray:
  462.           {    uint size = r_size(pref);
  463.             /*
  464.              * Since we know that gs_reloc_ref_ptr works by
  465.              * scanning forward, and we know that all the
  466.              * elements of this array itself are marked, we can
  467.              * save some scanning time by relocating the pointer
  468.              * to the end of the array rather than the
  469.              * beginning.
  470.              */
  471.             if ( size != 0 ) /* value.refs might be NULL */
  472.               { rputc('s');
  473.                 /*
  474.                  * gs_reloc_ref_ptr has to be able to determine
  475.                  * whether the pointer points into a space that
  476.                  * isn't being collected.  It does this by
  477.                  * checking whether the referent of the pointer
  478.                  * is marked.  For this reason, we have to pass
  479.                  * a pointer to the last real element of the
  480.                  * array, rather than just beyond it.
  481.                  */
  482.                 --size;
  483.                 pref->value.packed =
  484.                   gs_reloc_ref_ptr(pref->value.packed + size,
  485.                            gcst) - size;
  486.               }
  487.           }    break;
  488.         case t_name:
  489.           {    void *psub = name_ref_sub_table(pref);
  490.             void *rsub = gs_reloc_struct_ptr(psub, gcst);
  491.             pref->value.pname = (name *)
  492.               ((char *)rsub + ((char *)pref->value.pname - (char *)psub));
  493.           }    break;
  494.         case t_string:
  495.           {    gs_string str;
  496.             str.data = pref->value.bytes;
  497.             str.size = r_size(pref);
  498.             gs_reloc_string(&str, gcst);
  499.             pref->value.bytes = str.data;
  500.           }    break;
  501.         case t_oparray:
  502.             rputc('o');
  503.             pref->value.const_refs =
  504.               (const ref *)gs_reloc_ref_ptr((const ref_packed *)pref->value.const_refs, gcst);
  505.             break;
  506.         }
  507.         rp += packed_per_ref;
  508.     }
  509. }
  510.  
  511. /* Relocate a pointer to a ref. */
  512. /* See gsmemory.h for why the argument is const and the result is not. */
  513. ref_packed *
  514. gs_reloc_ref_ptr(const ref_packed *prp, gc_state_t *ignored)
  515. {    /*
  516.      * Search forward for relocation.  This algorithm is intrinsically
  517.      * very inefficient; we hope eventually to replace it with a better
  518.      * one.
  519.      */
  520.     register const ref_packed *rp = prp;
  521.     uint dec = 0;
  522.  
  523.     /*
  524.      * Iff this pointer points into a space that wasn't traced,
  525.      * the referent won't be marked.  In this case, we shouldn't
  526.      * do any relocation.  Check for this first.
  527.      */
  528.     if ( r_is_packed(rp) )
  529.       { if ( !r_has_pmark(rp) )
  530.           return (ref_packed *)rp;
  531.       }
  532.     else
  533.       { if ( !r_has_attr((const ref *)rp, l_mark) )
  534.           return (ref_packed *)rp;
  535.       }
  536.     for ( ; ; )
  537.     {    if ( r_is_packed(rp) )
  538.         {    /*
  539.              * Normally, an unmarked packed ref will be an
  540.              * integer whose value is the amount of relocation.
  541.              * However, the relocation value might have been
  542.              * too large to fit.  If this is the case, for
  543.              * each such unmarked packed ref we pass over,
  544.              * we have to decrement the final relocation.
  545.              */
  546.             rputc((*rp & lp_mark ? '1' : '0'));
  547.             if ( !(*rp & lp_mark) )
  548.               { if ( *rp != pt_tag(pt_integer) + packed_max_value )
  549.                   { /* This is a stored relocation value. */
  550.                 rputc('\n');
  551.                 return print_reloc(prp, "ref",
  552.                   (ref_packed *)
  553.                     ((const char *)prp -
  554.                      (*rp & packed_value_mask) + dec));
  555.                   }
  556.                 /*
  557.                  * We know this is the first of an aligned block
  558.                  * of packed refs.  Skip over the entire block,
  559.                  * decrementing the final relocation.
  560.                  */
  561.                 dec += sizeof(ref_packed) * align_packed_per_ref;
  562.                 rp += align_packed_per_ref;
  563.               }
  564.             else
  565.               rp++;
  566.             continue;
  567.         }
  568.         if ( !types_using_size[r_type((const ref *)rp)] )
  569.           {    /* reloc is in r_size */
  570.             rputc('\n');
  571.             return print_reloc(prp, "ref",
  572.                 (ref_packed *)
  573.                   (r_size((const ref *)rp) == 0 ? prp :
  574.                    (const ref_packed *)((const char *)prp - r_size((const ref *)rp) + dec)));
  575.           }
  576.         rputc('u');
  577.         rp += packed_per_ref;
  578.     }
  579. }
  580.  
  581. /* ------ Compaction phase ------ */
  582.  
  583. /* Compact a ref object. */
  584. /* Remove the marks at the same time. */
  585. private void
  586. refs_compact(obj_header_t *pre, obj_header_t *dpre, uint size)
  587. {    ref_packed *dest;
  588.     ref_packed *src;
  589.     ref_packed *end;
  590.     uint new_size;
  591.     src = (ref_packed *)(pre + 1);
  592.     end = (ref_packed *)((byte *)src + size);
  593.     /*
  594.      * We know that a block of refs always ends with an unmarked
  595.      * full-size ref, so we only need to check for reaching the end
  596.      * of the block when we see one of those.
  597.      */
  598.     if ( dpre == pre )    /* Loop while we don't need to copy. */
  599.       for ( ; ; )
  600.     {    if ( r_is_packed(src) )
  601.         {    if ( !r_has_pmark(src) )
  602.                 break;
  603.             if_debug1('8', "  [8]packed ref 0x%lx \"copied\"\n",
  604.                       (ulong)src);
  605.             *src &= ~lp_mark;
  606.             src++;
  607.         }
  608.         else            /* full-size ref */
  609.         {    if ( !r_has_attr((ref *)src, l_mark) )
  610.                 break;
  611.             if_debug1('8', "  [8]ref 0x%lx \"copied\"\n",
  612.                       (ulong)src);
  613.             r_clear_attrs((ref *)src, l_mark);
  614.             src += packed_per_ref;
  615.         }
  616.     }
  617.     else
  618.         *dpre = *pre;
  619.     dest = (ref_packed *)((char *)dpre + ((char *)src - (char *)pre));
  620.     for ( ; ; )
  621.     {    if ( r_is_packed(src) )
  622.         {    if ( r_has_pmark(src) )
  623.             {    if_debug2('8', "  [8]packed ref 0x%lx copied to 0x%lx\n",
  624.                       (ulong)src, (ulong)dest);
  625.                 *dest++ = *src & ~lp_mark;
  626.             }
  627.             src++;
  628.         }
  629.         else            /* full-size ref */
  630.         {    if ( r_has_attr((ref *)src, l_mark) )
  631.             {    ref rtemp;
  632.                 if_debug2('8', "  [8]ref 0x%lx copied to 0x%lx\n",
  633.                       (ulong)src, (ulong)dest);
  634.                 /* We can't just use ref_assign_inline, */
  635.                 /* because the source and destination */
  636.                 /* might overlap! */
  637.                 ref_assign_inline(&rtemp, (ref *)src);
  638.                 r_clear_attrs(&rtemp, l_mark);
  639.                 ref_assign_inline((ref *)dest, &rtemp);
  640.                 dest += packed_per_ref;
  641.                 src += packed_per_ref;
  642.             }
  643.             else        /* check for end of block */
  644.             {    src += packed_per_ref;
  645.                 if ( src >= end )
  646.                     break;
  647.             }
  648.         }
  649.     }
  650.     new_size = (byte *)dest - (byte *)(dpre + 1) + sizeof(ref);
  651. #ifdef DEBUG
  652.     /* Check that the relocation came out OK. */
  653.     /* NOTE: this check only works within a single chunk. */
  654.     if ( (byte *)src - (byte *)dest != r_size((ref *)src - 1) + sizeof(ref) )
  655.     {    lprintf3("Reloc error for refs 0x%lx: reloc = %lu, stored = %u\n",
  656.              (ulong)dpre, (ulong)((byte *)src - (byte *)dest),
  657.              (uint)r_size((ref *)src - 1));
  658.         gs_exit(1);
  659.     }
  660. #endif
  661.     /* Pad to a multiple of sizeof(ref). */
  662.     while ( new_size & (sizeof(ref) - 1) )
  663.         *dest++ = pt_tag(pt_integer),
  664.         new_size += sizeof(ref_packed);
  665.     /* We want to make the newly freed space into a free block, */
  666.     /* but we can only do this if we have enough room. */
  667.     if ( size - new_size < sizeof(obj_header_t) )
  668.       {    /* Not enough room.  Pad to original size. */
  669.         while ( new_size < size )
  670.           *dest++ = pt_tag(pt_integer),
  671.           new_size += sizeof(ref_packed);
  672.       }
  673.     else
  674.       {    obj_header_t *pfree = (obj_header_t *)((ref *)dest + 1);
  675.         pfree->o_large = 0;
  676.         pfree->o_size = size - new_size - sizeof(obj_header_t);
  677.         pfree->o_type = &st_bytes;
  678.       }
  679.     /* Re-create the final ref. */
  680.     r_set_type((ref *)dest, t_integer);
  681.     dpre->o_size = new_size;
  682. }
  683.